home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / liferea / xslt / newsbin.xml.in < prev    next >
Encoding:
Extensible Markup Language  |  2010-07-19  |  1.7 KB  |  62 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4. /**
  5.  * Rendering stylesheet for Liferea (newsbin description view)
  6.  *
  7.  * Copyright (C) 2006 Lars Lindner <lars.lindner@gmx.net>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version. 
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  */
  23. --> 
  24.  
  25. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
  26.                 xmlns="http://www.w3.org/1999/xhtml">
  27.  
  28. <xsl:output method="xml" version="1.0" indent="yes"/>
  29.  
  30. <xsl:preserve-space elements="//*"/>
  31.  
  32. <xsl:template match="/feed" >
  33. <html xmlns="http://www.w3.org/1999/xhtml">
  34. <head>
  35. <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
  36. ##STYLE_INSERT##
  37. </head>
  38. <body>
  39.  
  40. <!-- header table -->
  41. <table class="feedhead" cellspacing="0">
  42. <tr>
  43.   <td valign="middle" class="headleft">
  44.     <b><_span>News Bin:</_span></b>
  45.   </td>
  46.   <td width="100%" valign="middle" class="headright">
  47.      <xsl:value-of select="feedTitle"/>
  48.   </td>
  49. </tr>
  50. </table>
  51.  
  52. <div class='content'>
  53. <p>
  54. <_span>Add items to this news bin by selecting "Copy to News Bin" from the item list context menu.</_span>
  55. </p>
  56. </div>
  57.  
  58. </body>
  59. </html>
  60. </xsl:template>
  61. </xsl:stylesheet>
  62.